home *** CD-ROM | disk | FTP | other *** search
- /*
- * mib.c
- *
- * Copyright (C) 1994 First Class Technology.
- */
-
- #include<stdio.h>
- #include<stdlib.h>
- #include<string.h>
-
- #include"tcpipdrv.h"
- #include"network.h"
-
- _ti_func search_ti_entry (void);
-
- /************************************************
- * *
- ************************************************/
- struct mib_array *
- get_mib_list (void)
- {
- _ti_func func = search_ti_entry ();
-
- if (func)
- return (struct mib_array *)func (_TI_get_MIB, NULL);
-
- return 0;
- }
-